home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 June
/
EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso
/
earcd
/
dtype
/
fontdt12.lha
/
Src
/
dispatch.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-05-06
|
584b
|
39 lines
/*
** dispatch.h - dispatcher interface for Font DataType class
** Copyright © 1995-96 Michael Letowski
*/
#ifndef DISPATCH_H
#define DISPATCH_H
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#ifndef INTUITION_CLASSES_H
#include <intuition/classes.h>
#endif
#ifndef SUPPORT_TYPES_H
#include <support/types.h>
#endif
#ifndef CLASSBASE_H
#include "classbase.h"
#endif
/*
** Public constants
*/
#define DATATYPENAME "font.datatype"
#define SUPERCLASSNAME PICTUREDTCLASS
/*
** Public functions prototypes
*/
Class *InitClass(struct ClassBase *cb);
#endif /* DISPATCH_H */